home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / graphics / gvvbx1 / about.frm next >
Text File  |  1995-06-08  |  2KB  |  67 lines

  1. VERSION 2.00
  2. Begin Form About_Frm 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "About GVBox Custom Control"
  5.    ClientHeight    =   2670
  6.    ClientLeft      =   2685
  7.    ClientTop       =   2040
  8.    ClientWidth     =   4065
  9.    Height          =   3075
  10.    Left            =   2625
  11.    LinkTopic       =   "Form2"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   2670
  15.    ScaleWidth      =   4065
  16.    Top             =   1695
  17.    Width           =   4185
  18.    Begin CommandButton Cmd_OK 
  19.       Caption         =   "OK"
  20.       Default         =   -1  'True
  21.       Height          =   375
  22.       Left            =   1560
  23.       TabIndex        =   1
  24.       Top             =   2040
  25.       Width           =   975
  26.    End
  27.    Begin Image Image1 
  28.       Height          =   480
  29.       Left            =   360
  30.       Picture         =   ABOUT.FRX:0000
  31.       Top             =   240
  32.       Width           =   480
  33.    End
  34.    Begin Label Lbl_About 
  35.       Alignment       =   2  'Center
  36.       FontBold        =   -1  'True
  37.       FontItalic      =   0   'False
  38.       FontName        =   "MS Sans Serif"
  39.       FontSize        =   9.75
  40.       FontStrikethru  =   0   'False
  41.       FontUnderline   =   0   'False
  42.       Height          =   1455
  43.       Left            =   480
  44.       TabIndex        =   0
  45.       Top             =   240
  46.       Width           =   3255
  47.    End
  48. End
  49. Option Explicit
  50.  
  51. Sub Cmd_OK_Click ()
  52.     Unload About_Frm
  53. End Sub
  54.  
  55. Sub Form_Load ()
  56.     Dim A$, CRLF$
  57.  
  58.     Move (Screen.Width - Width) / 2, (Screen.Height - Height) / 3
  59.     CRLF$ = Chr$(13) & Chr$(10)
  60.     A$ = "GVBox VBX" & CRLF$ & "Version 1.0" & CRLF$ & CRLF$
  61.     A$ = A$ & "by Joe C. Oliphant" & CRLF$
  62.     A$ = A$ & "joe_oliphant@csufresno.edu" & CRLF$
  63.     A$ = A$ & "CompuServe [71742,1451]"
  64.     Lbl_About.Caption = A$
  65. End Sub
  66.  
  67.